home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / Fruity / FRUTFOOT.DXR / 00004_MainRoutines Used.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  6.1 KB  |  292 lines

  1. global gGuyObj, gBoxCoverUpManager, gChompSoundFlag, gOffChompFlag, gGuyLocH, gGuyLocV, gCurrentTravelProps, gStartTimerFlag, gSoundCst, gInitialColorDepth, gInteruptFlag, gPathDelim, flushActive, gCounter, gEnable, gisTimeRunning, gSoundSwitch
  2.  
  3. on startMovie
  4.   cursor(4)
  5.   set flushActive to 0
  6.   set the mouseDownScript to EMPTY
  7.   set the mouseUpScript to EMPTY
  8.   set the timeoutScript to EMPTY
  9.   preloadMember(31, 58)
  10. end
  11.  
  12. on stopMovie
  13.   if not IsShockWave() then
  14.     if the machineType <> 256 then
  15.       if not IsProj() then
  16.         closeXLib(the pathName & "JOHNNY.XOBJ")
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.  
  22. on IsProj
  23.   return 1
  24. end
  25.  
  26. on IsShockWave
  27.   return 0
  28. end
  29.  
  30. on puppetSnd chan, soundNum
  31.   if (chan > 10) or stringp(chan) then
  32.     if stringp(chan) then
  33.       if chan = EMPTY then
  34.         exit
  35.       end if
  36.     else
  37.       if chan <= 0 then
  38.         exit
  39.       end if
  40.     end if
  41.     puppetSound(chan)
  42.     exit
  43.   end if
  44.   if stringp(soundNum) then
  45.     if soundNum = EMPTY then
  46.       exit
  47.     end if
  48.   else
  49.     if soundNum <= 0 then
  50.       exit
  51.     end if
  52.   end if
  53.   puppetSound(chan, soundNum)
  54. end
  55.  
  56. on envTest
  57.   if the machineType <> 256 then
  58.     if the soundLevel = 0 then
  59.       alert("The sound level must be set above 0 for Bob and Weave to Box. The sound level is being set to 5.")
  60.       set the soundLevel to 5
  61.     end if
  62.     if IsProj() then
  63.       if the colorDepth <> 8 then
  64.         alert("Your monitor is being set to 8 bit to optimize performance. Your monitor will automatically be set back to " & the colorDepth & " when you quit.")
  65.         set gInitialColorDepth to the colorDepth
  66.         set the colorDepth to 8
  67.       end if
  68.     end if
  69.   end if
  70. end
  71.  
  72. on StartGame
  73.   cursor(4)
  74.   if not IsShockWave() then
  75.     if the machineType = 256 then
  76.       set gPathDelim to "\"
  77.     else
  78.       set gPathDelim to ":"
  79.       if not IsProj() then
  80.         openXLib(the pathName & "JOHNNY.XOBJ")
  81.       end if
  82.     end if
  83.   end if
  84.   resetCursor()
  85. end
  86.  
  87. on initGame
  88.   initGlobals()
  89.   initObjects()
  90.   InitTimer()
  91.   pauseTimer()
  92. end
  93.  
  94. on initGlobals
  95.   clearGlobals()
  96.   set gInitialColorDepth to 0
  97.   set gInteruptFlag to 0
  98.   repeat with n = 11 to 27
  99.     puppetSprite(n, 1)
  100.   end repeat
  101.   set gChompSoundFlag to 0
  102.   set gOffChompFlag to 0
  103.   set gGuyLocH to point(0, 0)
  104.   set gGuyLocV to point(0, 0)
  105.   set gSoundCst to 0
  106.   set gCounter to 0
  107.   set gEnable to 1
  108.   set gisTimeRunning to 0
  109.   set gSoundSwitch to 0
  110. end
  111.  
  112. on initObjects
  113.   set gGuyObj to new(script "ChompingGuyObj")
  114.   set gBoxCoverUpManager to new(script "BoxCover")
  115.   set gCurrentTravelProps to getAt(the pGuyTravelList of gGuyObj, 1)
  116. end
  117.  
  118. on slide chan, H2, V2, steps, waitTime
  119.   set deltaH to the locH of sprite chan - H2
  120.   set deltaV to the locV of sprite chan - V2
  121.   repeat with incr = 1 to steps
  122.     set theTime to the timer
  123.     set the locH of sprite chan to H2 + (deltaH * (steps - incr) / steps)
  124.     set the locV of sprite chan to V2 + (deltaV * (steps - incr) / steps)
  125.     updateScreen()
  126.     updateStage()
  127.     repeat while the timer < (theTime + waitTime)
  128.       updateScreen()
  129.     end repeat
  130.   end repeat
  131. end
  132.  
  133. on resetCursor
  134.   cursor(200)
  135.   cursor([2, 3])
  136. end
  137.  
  138. on updateScreen
  139.   if the pPosInTravelList of gGuyObj = 18 then
  140.     exit
  141.   end if
  142.   UpdateGuy()
  143.   updateTimer()
  144.   if gisTimeRunning then
  145.     UpdateAmbient()
  146.   end if
  147. end
  148.  
  149. on UpdateAmbient
  150.   if not soundBusy(1) then
  151.     puppetSound(1, 23)
  152.     set gSoundCst to 23
  153.   end if
  154. end
  155.  
  156. on Dissolvetransition
  157.   if not IsShockWave() then
  158.     if the machineType <> 256 then
  159.       puppetTransition(51, 2)
  160.     else
  161.       puppetTransition(24, 2, 12)
  162.     end if
  163.   end if
  164. end
  165.  
  166. on UpdateGuy
  167.   if the pPosInTravelList of gGuyObj = 18 then
  168.     exit
  169.   end if
  170.   if the mouseDown then
  171.     case rollOver() of
  172.       40:
  173.         if gSoundSwitch = 0 then
  174.           set gSoundSwitch to 1
  175.         end if
  176.         if gSoundCst = 17 then
  177.           mDragGuy(gGuyObj)
  178.           mUpdateGuy(gGuyObj, 2)
  179.         else
  180.           puppetSound(1, 17)
  181.           updateStage()
  182.           set gSoundCst to 17
  183.         end if
  184.       otherwise:
  185.         if gSoundSwitch = 0 then
  186.           exit
  187.         end if
  188.         if gSoundCst = 20 then
  189.           mUpdateGuy(gGuyObj, 1)
  190.         else
  191.           puppetSound(1, 20)
  192.           set gSoundCst to 20
  193.           set the memberNum of sprite 40 to getaProp(the pGuyList of gGuyObj, getAt(gCurrentTravelProps, 1)) + 2
  194.           set gGuyLocH to the locH of sprite 40
  195.           set gGuyLocV to the locV of sprite 40
  196.           updateStage()
  197.         end if
  198.     end case
  199.   else
  200.     if gSoundSwitch = 1 then
  201.       puppetSound(0)
  202.       set gSoundCst to 0
  203.       set the memberNum of sprite 40 to getaProp(the pGuyList of gGuyObj, getAt(gCurrentTravelProps, 1)) + 2
  204.       updateStage()
  205.       set gSoundSwitch to 0
  206.     end if
  207.   end if
  208. end
  209.  
  210. on StartChompSound
  211.   if not gisTimeRunning then
  212.     resumeTimer()
  213.     set gisTimeRunning to 1
  214.   end if
  215.   if the pPosInTravelList of gGuyObj = 18 then
  216.     exit
  217.   end if
  218.   set gSoundSwitch to 1
  219.   puppetSound(1, 17)
  220.   updateStage()
  221.   set gSoundCst to 17
  222. end
  223.  
  224. on SetGuyLocMonitor
  225.   set gGuyLocV to the locV of sprite 40
  226.   set gGuyLocH to the locH of sprite 40
  227. end
  228.  
  229. on resetGame
  230.   puppetSound(1, 22)
  231.   set gSoundCst to 22
  232.   updateStage()
  233.   repeat with c = 1 to 42
  234.     puppetSprite(c, 0)
  235.   end repeat
  236.   go(the frame - 2)
  237.   repeat while soundBusy(1)
  238.   end repeat
  239. end
  240.  
  241. on UStage theTime
  242.   updateStage()
  243.   repeat while the timer < theTime
  244.   end repeat
  245. end
  246.  
  247. on wait sticks
  248.   set theTime to the timer
  249.   repeat while the timer < (theTime + sticks)
  250.   end repeat
  251. end
  252.  
  253. on InitTimer
  254.   global gTimerActive, gTime, gNext
  255.   set gTimerActive to 1
  256.   set gTime to 60
  257.   set gNext to the ticks + 60
  258. end
  259.  
  260. on pauseTimer
  261.   global gTimerActive, gTime, gNext
  262.   set gTimerActive to 0
  263. end
  264.  
  265. on resumeTimer
  266.   global gTimerActive, gTime, gNext
  267.   set gTimerActive to 1
  268.   set gNext to the ticks + 60
  269. end
  270.  
  271. on updateTimer
  272.   global gTimerActive, gTime, gNext
  273.   if not gTimerActive then
  274.     exit
  275.   end if
  276.   if the ticks < gNext then
  277.     exit
  278.   end if
  279.   if gTime > 0 then
  280.     set gTime to gTime - 1
  281.   else
  282.     resetGame()
  283.     repeat while soundBusy(1)
  284.     end repeat
  285.     abort()
  286.   end if
  287.   set gNext to the ticks + 60
  288.   set the castNum of sprite 5 to 62 + (gTime / 60)
  289.   set the castNum of sprite 4 to 62 + (gTime mod 60 / 10)
  290.   set the castNum of sprite 3 to 62 + (gTime mod 10)
  291. end
  292.